home *** CD-ROM | disk | FTP | other *** search
/ Deutsche Edition 1 / Deutsche Edition 1.iso / amok / amok_lha / amok24.lha / DME / SRC / source.zoo / globals.c < prev    next >
C/C++ Source or Header  |  1989-07-03  |  1KB  |  38 lines

  1.  
  2. /*
  3.  * GLOBALS.C
  4.  *
  5.  *      (C)Copyright 1987 by Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include "defs.h"
  9.  
  10. ED *Ep;                 /* Current Window               */
  11. MLIST DBase;            /* Doubly linked list of Files  */
  12.  
  13. char    Nsu;            /* Used in formatter to disable screen updates  */
  14. char    Msgchk;         /* Force message queue check for break          */
  15. ubyte   CtlC;           /* Keycode for 'c'                              */
  16. char    Savetabs;       /* SaveTabs mode?                               */
  17. char    memoryfail;     /* out of memory flag                           */
  18. ubyte   Current[256];   /* Current Line buffer and length               */
  19. ubyte   Space[32] = { 32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
  20.                     32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32 };
  21. short   Clen;
  22. char    *Partial;       /* Partial command line when executing ESCIMM   */
  23. char    *String;        /* String Capture variable                      */
  24.  
  25. ubyte   Deline[256];
  26. short   ScreenDepth;
  27.  
  28. char    Comlinemode;
  29. char    Abortcommand;
  30.  
  31. long    BSline = -1;
  32. long    BEline = -1;
  33. short   BSchar;
  34. short   BEchar;
  35.  
  36. ED      *BEp;
  37.  
  38.